home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_319 / cnewssrc / cnews.orig.lzh / expire / histdups < prev    next >
Text File  |  1989-06-27  |  369b  |  15 lines

  1. # Awk program to merge history lines for the same article in a sorted history
  2. # file (such as is generated during the mkhistory processing).
  3. BEGIN { FS = "\t" ; OFS = "\t" ; mesgid = "" }
  4. {
  5.     if ($1 != mesgid) {
  6.         if (mesgid != "")
  7.             print mesgid, dates, names
  8.         mesgid = $1
  9.         dates = $2
  10.         names = $3
  11.     } else
  12.         names = names " " $3
  13. }
  14. END { print mesgid, dates, names }
  15.